home *** CD-ROM | disk | FTP | other *** search
- !!Script
- // Copyright ⌐ 1997-1998 - Modelworks Software
-
- /**
- @Tool: insert Header 5~wraps the current selection with
- <H5> ... </H5> tags.
- @EndTool:
- @Summary: insert Header 5~wraps selection with the H5 tag
- */
-
- function DoCommand()
- {
- var editor = getActiveEditor();
- if (editor)
- {
- var selection = editor.getSelection();
- var upperCaseHtmlTags = getMapFileValue("Preferences", "Upper Case HTML Tags", true);
- if (upperCaseHtmlTags)
- {
- editor.insert(selection.endLineIndex, selection.endCharIndex, "</H5>");
- editor.insert(selection.startLineIndex, selection.startCharIndex, "<H5>");
- }
- else
- {
- editor.insert(selection.endLineIndex, selection.endCharIndex, "</h5>");
- editor.insert(selection.startLineIndex, selection.startCharIndex, "<h5>");
- }
- editor.setActive();
- }
- }
-
- !!/Script
-